SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 53812: SAS® Drug Development 4.5 - Index files created using PROC FMCP for functions and subroutines definitions are not listed in a job Manifest

DetailsAboutRate It

SAS® Drug Development relies on PROC SCAPROC to list inputs and outputs for a job Manifest or in a SAS® Session.

Consider this program:

   proc scaproc;

      record 'c:\temp\functions.txt';

   run;

   libname out "c:\temp\";

   proc fcmp outlib=out.funcs.inv2;

       function inverse2(in);

          if n=0 then inv=.;

          else inv=1/in;

          return(inv);

       endsub;

   run;

   proc fcmp outlib=out.funcs.inv2;

   data _null_;

       x=5;

       y=inverse2(x);

       put y=;

   run;

   proc scaproc ;

       write;

   run;

There is no notification in the functions.txt file that indicates funcs.sas7bndx file has been created as an OUTPUT. The funcs.sas7bndx file defines the index for the function and is a file that should appear in the job Manifest.



Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemSAS Life Science Analytics FrameworkLinux for x644.75.1.19.4 TS1M39.4 TS1M5
SAS SystemSAS Drug DevelopmentLinux for x644.5.19.4 TS1M2
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.